home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / code / chap10 / Round.java < prev   
Encoding:
Java Source  |  1997-04-20  |  351 b   |  11 lines

  1. class Round {
  2.    public static void main(String[] args) {
  3.       System.out.println(Math.round(9.01));
  4.       System.out.println(Math.round(9.5));
  5.       System.out.println(Math.round(-9.5));
  6.       System.out.println(Math.round(-0.1));
  7.       System.out.println(Math.round(100.0));
  8.       System.out.println(Math.round(Double.MIN_VALUE));
  9.    }
  10. }
  11.